home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000415_news@newsmaster….columbia.edu _Tue Aug 25 11:00:30 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA16536
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 25 Aug 1998 11:00:29 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA24925
  7.     for kermit.misc@watsun; Tue, 25 Aug 1998 11:00:28 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: SEND to modem (flash rom upgrade)
  12. Date: 25 Aug 1998 14:50:04 GMT
  13. Organization: Columbia University
  14. Lines: 39
  15. Message-ID: <6ruius$t2c$1@apakabar.cc.columbia.edu>
  16. References: <slrn6u5h8k.qo.chris@athena.ibex.co.nz>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9141
  19.  
  20. In article <slrn6u5h8k.qo.chris@athena.ibex.co.nz>,
  21. chris burgess <chris@ibex.co.nz> wrote:
  22. : i have to upload a ROM file to a modem to go from flex to v.90. the process
  23. : is this:
  24. :  - wake up modem
  25. :  - say "AT**"
  26. :  - get "Download initiated"
  27. :  - upload file 1 in text mode to modem
  28. :  - get "Upload flash rom"
  29. :  - upload file 2 in text mode to modem
  30. : i've tried to replicate the steps (instructions written for NT/mac and all
  31. : clicky draggy) but it gives me "too many retries" and dies. i'm doing:
  32. : [root@corky /root]# kermit
  33. : ...
  34. :  C-Kermit@corky> set line /dev/ttyS1
  35. :  C-Kermit@corky> set file type ascii
  36. :  C-Kermit@corky> connect
  37. :  Connecting to /dev/ttyS1, speed 57600.
  38. :  The escape character is Ctrl-\ (ASCII 28, FS)
  39. :  Type the escape character followed by C to get back,
  40. :  or followed by ? to see other options.
  41. :  Download initiated ..
  42. :  (Back at corky.ibex.co.nz)
  43. :  C-Kermit@corky> send /home/archives/files/hardware/rockwell/LOAD4IN1.S37 
  44. :          0  100%       0      23  [OK] <- prints "S%T%T%T%T%T%T%T%T%T%T%"
  45. It is sometimes a bit tricky to decode modem manuals and tip sheets.
  46. When they say "upload in text mode", they might not mean what you think.
  47.  
  48. In the "send" command above, try replacing the word "send" with with
  49. "transmit".
  50.  
  51. And be sure to set C-Kermit and the modem to RTS/CTS (hardware) flow control.
  52.  
  53. - Frank